3D Graphics Programming with QuickDraw 3D 1.5.4
Previous | QD3D Book | Overview | Chapter Contents | Next |
A two-dimensional area is defined by the TQ3Area data type.
typedef struct TQ3Area {
TQ3Point2D min;
TQ3Point2D max;
} TQ3Area;
A plane equation is defined by the TQ3PlaneEquation data type.
typedef struct TQ3PlaneEquation {
TQ3Vector3D normal;
float constant;
} TQ3PlaneEquation;
Previous | QD3D Book | Overview | Chapter Contents | Next |